home *** CD-ROM | disk | FTP | other *** search
- #include "bbs.h"
-
- extern char ReservedName[];
-
- #ifdef RTS
- void cdummy1(void)
- {
- }
- #endif
-
-
-
-
- void DisplayAwaitMsg(void)
- {
-
- IO_Flags[IOFLAG_SCR_OUT]=1;
- AnsiColor=1;
- ConPutStr("\017\014\n");
-
- sprintf(GSTR3,"\r\n © 1992-1995 %s by LightSpeed Technologies Inc.\x30\x20\x70",PROG_NAME);
- ConPutStr(GSTR3);
- sprintf(GSTR3,"\r\n Programming by: %s",PROG_AUTHOR1);
- ConPutStr(GSTR3);
- ConPutStr("\r\n \r\n");
-
- sprintf(GSTR1,"%sAWAITSCREEN",Sopt->NodeScreen);
- if(!ChecktoDisplay(GSTR1,GSTR2,0,0))
- {
- ConPutStr(" F1 }- Sysop Login F2 }- Local Login\r\n");
-
- ConPutStr(" F3 }- Instant Remote Logon F4 }- Reserve for a user\r\n");
-
-
- ConPutStr(" F5 }- ** RESERVED ** F6 }- Account Editing\r\n");
- ConPutStr(" F7 }- Chat Toggle F8 }- Reprogram modem\r\n");
- ConPutStr(" F9 }- Exit BBS F0 }- Exit BBS (off hook)\r\n\r\n");
-
- if(ReservedName[0]!='\0') {
- sprintf(GSTR3," The BBS is reserved for %-30s \r\n",ReservedName);
- ConPutStr(GSTR3);
- }
- }
- ConPutStr("9H");
- ConPutStr(" p"); /* turn console cursor off */
-
- IO_Flags[IOFLAG_SCR_OUT]=0;
-
- }
-